home *** CD-ROM | disk | FTP | other *** search
/ Quick PC 62 / Quick PC 62.iso / I386 / NETIPRIP.IN_ / netiprip.inf
Encoding:
Windows Setup INFormation  |  1999-11-06  |  1.8 KB  |  68 lines

  1. ; -- NETIPRIP.INX --
  2. ;
  3. ; Route Listening Service
  4. ;
  5. ; Copyright (c) 1993-1999, Microsoft Corporation
  6.  
  7. [Version]
  8. Signature="$Windows NT$"
  9. LayoutFile=layout.inf
  10. Provider=%Msft%
  11. DriverVer=11/06/1999,5.00.2175.1
  12.  
  13. [Iprip]
  14. CopyFiles     = CpyFiles_Sys
  15. Uninstall     = Iprip.Remove
  16. StartServices = Iprip
  17.  
  18. [DestinationDirs]
  19. CpyFiles_Sys  = 11                ;System32
  20.  
  21. [Iprip.Upgrade]
  22. CopyFiles = CpyFiles_Sys
  23.  
  24. [Iprip.Services]
  25. AddService = Iprip,,    Iprip_Service_Inst, Iprip_Evt
  26.  
  27. [Iprip.Remove.Services]
  28. DelService = Iprip
  29.  
  30. [CpyFiles_Sys]
  31. iprip.dll,,,2
  32. trace.dll,,,2
  33.  
  34. [Iprip_Service_Inst]
  35. Description     = %Iprip_Desc%
  36. DisplayName     = %Iprip_Display%
  37. ServiceType     = 0x120 ;SERVICE_INTERACTIVE_PROCESS | SERVICE_WIN32_SHARE_PROCESS
  38. StartType       = 2
  39. ErrorControl    = 1
  40. ServiceBinary   = "%%SystemRoot%%\System32\svchost.exe -k netsvcs"
  41. ;
  42. ; The dependency on RpcSs is because this service is set to auto-start
  43. ; and it runs in an instance of Svchost that needs to call
  44. ; CoInitailizeSecurity on behalf of the entire process.
  45. ; This call (made by svchost) will not succeed unless RpcSs is running.
  46. ;
  47. Dependencies    = RpcSS
  48. AddReg          = Iprip_AddReg
  49. Description     = %Iprip_Desc%
  50.  
  51. [Iprip_AddReg]
  52. HKR, Parameters, ServiceDll, 0x20000, "%%SystemRoot%%\System32\iprip.dll"
  53.  
  54. [Iprip_Evt]
  55. AddReg = Iprip_Evt_AddReg
  56.  
  57. [Iprip_Evt_AddReg]
  58. HKR,, EventMessageFile, 0x20000, "%%SystemRoot%%\System32\iprip.dll"
  59. HKR,, TypesSupported,   0x10001, 0x00000007
  60.  
  61. [Strings]
  62. Msft = "Microsoft"
  63.  
  64. Iprip_Desc = "Listens for route updates sent by routers that use the Routing Information Protocol version 1 (RIPv1)."
  65. Iprip_Display = "RIP Listener"
  66. Iprip_HELP = "This service listens for IP route updates and adds them to the local routing table.  (Also known as RIP for IP)"
  67.  
  68.